home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 1.4 KB | 50 lines | [TEXT/ScoM] |
- POSITIONING EVENTS IN TIME
-
- ; Each instrument starts playing when a specified number of bars
- ; (or other time units have passed).
- ; instr3 consists of two partials which both play to the same channel
- ; that shows you have to make an instrument that will appear playing
- ; in multiple time positions.
- ; Each intrument or partial plays then the amount of determined by the
- ; next zone. In the example all instruments use the same class slot
- ; values, but you can individualize each instrument with their own
- ; values. If you want instr3 partials to play same material in different
- ; time positions then you would just define the class slots
- ; for inst3 (like channel 4 definition). Learn to use inheritance.
- ; Each partial will show on a different MIDI track but they will play
- ; to the same channel. Your sequencer probably allows to mix them
- ; into one track if you later want to notate your score.
-
- (def-orchestra 'orchestra
- all-instruments (group)
- group (inst1 inst2 inst3)
- inst3 (inst3-partial1 inst3-partial2)
- )
-
- (def-section sect-a
- all-instruments
- symbol '(a b c)
- length '(1/16)
- velocity '(64)
- tonality (activate-tonality (major c 4))
- inst1
- channel 2
- zone '(-2/1 2/1)
- inst2
- channel 3
- zone '(-3/1 2/1)
- inst3
- channel 4
- inst3-partial1
- zone '(-1/1 2/1)
- inst3-partial2
- zone '(-5/1 2/1)
- )
-
- (def-tempo 120)
-
- (play-file-p "my song"
- all-instruments '(sect-a)
- )
-
-